home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ian & Stuart's Australian Mac: Not for Sale
/
Another.not.for.sale (Australia).iso
/
hold me in your arms
/
PGP 2.6
/
pgp2.6 Source
/
src
/
system.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-07
|
656b
|
39 lines
#ifndef SYSTEM_H
#define SYSTEM_H
#ifdef UNIX
#if !defined(HAVE_UNISTD_H) && !defined(MACH) && !defined(_BSD)
#define HAVE_UNISTD_H
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#else
#include <stdio.h>
#include <sys/types.h>
#endif
int getch();
int kbhit();
/* replacement function for obsolete clock(), just provides random data */
long Clock();
#endif /* UNIX */
#if defined(UNIX) || defined(AMIGA) || defined(VMS)
void ttycbreak();
void ttynorm();
#else
#define ttycbreak() /* nothing */
#define ttynorm() /* nothing */
#endif
#if !defined(MSDOS) && !defined(ATARI)
char *strlwr(char *);
#endif
void breakHandler(int);
#endif /* SYSTEM_H */